.event__content {
    max-width: calc(100% - 0px);
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 992px) {
    .event__content {
        max-width: calc(100% - 0px);
        padding-left: 0;
        padding-right: 0;
    }
}

.event__featured-price {
    font-size: 23px;
    line-height: 1.2;
}
@media (min-width: 992px) {
    .event__featured-price {
        font-size: 35px;
    }
}

.normal-price {
    font-size: 16px;
    font-weight: bold;
}
.old-price {
    text-decoration: line-through;
    font-weight: normal;
}
.discount-price {
    font-size: 20px;
    font-weight: bold;
}

.add-to-cart-btn {
    position: absolute;
    top: 5%;
    right: 5%;
}

.no-mr {
    margin-right: 0;
}

.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.pl-0 {
    padding-left: 0;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.list-action {
    transition: all .2s ease-in-out;
}
.list-action:hover {
    /*text-decoration: underline;*/
    transform: scale(1.1);
}

.text-center {
    text-align: center;
}
.text-initial {
    text-align: initial !important;
}

.mr-1 {
    margin-right: 1rem;
}
.mr-2 {
    margin-right: 2rem;
}

.ml-0 {
    margin-left: 0;
}
.ml-1 {
    margin-left: 1rem;
}
.ml-2 {
    margin-left: 2rem;
}
.ml-3 {
    margin-left: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}
.mt-4 {
    margin-top: 4rem;
}
.mt-30 {
    margin-top: 30px;
}
.mt-120 {
    margin-top: 120px;
}

.mb-1 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 4rem;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-120 {
    margin-bottom: 120px;
}
.mb-0 {
    margin-bottom: 0;
}

.pb-0 {
    padding-bottom: 0 !important;
}
.pb-4 {
    padding-bottom: 4rem;
}

.pr-0 {
    padding-right: 0;
}

.pt-30 {
    padding-top: 30px;
}

.p-25 {
    padding: 25px !important;
}

.p-0-2 {
    padding: 0 2rem;
}
.p-0-25 {
    padding: 0 25px;
}

.d-none {
    display: none;
}
.d-inline {
    display: inline;
}

.cursor-pointer {
    cursor: pointer;
}

.total-price-cart {
    display: block;
    margin-bottom: 15px;
}

.cart-item-quantity {
    display: inline;
    width: 65px;
}

.change-quantity-container {
    display: flex;
    align-items: center;
}

.btn-change-quantity,
.btn-change-quantity-simple {
    background: transparent;
    display: inline;
}

.remove-from-cart {
    display: inline;
}
.remove-from-cart button.btn {
    background: transparent;
    padding: 2px;
    color: #605f5f;
    opacity: 0.3;
}
.remove-from-cart button:hover{
    opacity: 1;
}
.cart-item {
    padding: 25px 0;
    display: flex;
    align-items: center;
}
.cart-item-wrap{
    background: #fbfbfb;
    padding: 0 25px;
    margin-bottom: 15px;
}
.center-margin {
    margin: 0 auto;
}

.justify-center {
    justify-content: center;
}

hr.half-width {
    width: 50%;
}

.tabs__link--active::after,
.tabs__link:focus::after, .tabs__link:hover::after {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 768px) {
    .tabs__link::after {
        position: absolute;
        content: '';
        border-style: solid;
        border-width: 9px 0 9px 16px;
        border-color: transparent transparent transparent #ef404a;
        width: 0;
        height: 0;
        right: -16px;
        top: calc(50% - 9px);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 200ms ease-out, visibility 200ms ease-out;
        transition: opacity 200ms ease-out, visibility 200ms ease-out;
    }
}

.pagination.pagination-split li {
    display: inline-block;
    margin-right: 3px;
}

.pagination.pagination-split li a {
    border-radius: 4px;
    color: #768399;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}
ul.pagination li.page-item {
    display: inline;
}
ul.pagination {
    text-align: center;
    padding-left: 0;
}
li.page-item {
    padding: 0 12px;
}
a.page-link:focus, a.page-link:hover {
    text-decoration: underline;
    color: #ef404a;
    -webkit-transition: background-color 200ms ease-out, color 200ms ease-out;
    transition: background-color 200ms ease-out, color 200ms ease-out;
}
.qty-status{
    font-weight: bold;
    color: green;
}
.qty-status.outofstock{
    color: red;
}
.toast-message a{
    text-decoration: underline;
}
#toast-container>div{
    opacity: 0.9 !important;
}
.checkout-steps th a{
    color: #ef404a;
}

.checkout-steps th{
    font-size: 18px;
    padding: 20px;
    color: #ef404a;
    background-color: #f7f7f7;
    position: relative;
}
.checkout-steps th:first-child{
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-right: 1px solid #ececec;
}
.checkout-steps th:nth-child(2){
    border-right: 1px solid #ececec;
}
.checkout-steps th:last-child{
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-left: 1px solid #ececec;
}
.checkout-steps th.active-step{
    color: #fff;
    background-color: #ef404a;
}
.checkout-steps th.active-step a{
    color: #fff;
}
.payment_info{
    display: none;
    margin-top: 20px;
    padding-left: 45px;
    font-size: 16px;
    line-height: 20px;
    color: #a0a0a0;
}
.delivery_info{
    display: block;
    padding-left: 45px;
    font-size: 16px;
    line-height: 20px;
    color: #a0a0a0;
}
/* Ta stil še dodan v mailingu: /resources/views/email/email.blade.php */
.in_store_pickup_info{
    border: 2px solid #ffee77;
    padding: 10px;
    background: #fff5b1;
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
}
.shop-settings-text-delivery p{
    line-height: initial;
    display: inline-block;
}
.shop-settings-text-delivery h5{
    padding-left: 45px;
}
.payment_info.active{
    display: block;
}
footer {
    padding-top: 80px;
}

.footer-top {
    color: #605f5f;
    background-color: #dfdfdf;
    padding: 40px 0 40px;
}

@media (min-width: 992px) {
    .footer-top {
        padding: 120px 0 140px;
    }
}

.footer-top > .container {
    position: relative;
}

.footer__title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .footer-menu {
        margin-bottom: 0;
    }
}

.footer-menu__item {
    display: block;
    margin-bottom: 3px;
}

.footer-menu__link {
    font-size: 15px;
    text-decoration: underline;
    color: #929292;
}

.footer-menu__link:focus,
.footer-menu__link:hover {
    color: #929292;
}

.footer__contact-row {
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .footer__contact-row {
        margin-bottom: 0;
    }
}

.footer__contact-row::after {
    position: absolute;
    content: '';
    background-color: #ef404a;
    top: -20px;
    bottom: -40px;
    left: -50%;
    width: 1px;
    height: calc(100% + 60px);
}

.footer__contact {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 28px;
}

.footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
}

.footer__info-icon {
    color: #ef404a;
    margin-right: 15px;
}

.footer__info-text {
    text-decoration: none;
    color: #605f5f;
}

.footer__info-text:focus,
.footer__info-text:hover {
    color: #605f5f;
}

.footer__social-icons {
    font-size: 40px;
    color: #ef404a;
    margin-right: 10px;
}

.footer__social-icons:focus,
.footer__social-icons:hover {
    color: #ef404a;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    min-height: 124px;
}

@media (min-width: 992px) {
    .footer-bottom {
        flex-wrap: nowrap;
        flex-direction: column;
    }
}

.footer-bottom__left {
    padding: 30px 0 10px;
}

@media (min-width: 992px) {
    .footer-bottom__left {
        padding: 45px 0 0;
    }
}

.footer-bottom__right {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0 30px;
}

@media (min-width: 992px) {
    .footer-bottom__right {
        display: flex;
        align-items: center;
        width: auto;
        padding: 10px 0;
    }
}

.footer__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 992px) {
    .footer__logos {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.footer__logo {
    margin-right: 29px;
    margin-bottom: 20px;
}

.footer__logo-link:focus,
.footer__logo-link:hover {
    text-decoration: none;
}

.footer__back-to-top {
    font-size: 34px;
    line-height: 1;
    color: #ef404a;
    margin-left: 40px;
}

.footer__back-to-top:focus,
.footer__back-to-top:hover {
    color: #ef404a;
}

a.details-link:focus, a.details-link:hover {
    text-decoration: underline;
    color: #ef404a;
    -webkit-transition: background-color 200ms ease-out, color 200ms ease-out;
    transition: background-color 200ms ease-out, color 200ms ease-out;
}

.reserve-experience__price-old {
    font-size: 20px;
    font-weight: normal;
    margin: 0 5px;
    text-decoration: line-through;
}

.visible-mobile {
    display: none;
}
.visible-desktop {
    display: none;
}
.visible-mobile-btn {
    display: none;
}
.visible-desktop-btn {
    display: none;
}

@media (min-width: 1366px) {
    .visible-desktop {
        display: block;
    }
}
@media (max-width: 1365px) {
    .visible-mobile {
        display: block;
    }
}
@media (min-width: 768px) {
    .visible-desktop-btn {
        display: block;
    }
}
@media (max-width: 767px) {
    .visible-mobile-btn {
        display: block;
    }
}

.sticky--accommodation {
    top: 88px;
    margin-top: 0;
    /*margin-bottom: 30px;*/
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .featured-content {
        padding: 50px 25px;
    }
}

.gallery-carousel__number {
    display: none;
}

.r-form .form-group .input {
    position: relative;
    margin-left: 5px;
    min-width: 60%;
}

.filters-select {
    padding: 15px 55px 15px 25px !important;
}

.form-field-error-color {
    color: #ef404a !important;
}
.form-field-error-border {
    border-color: #ef404a !important;
}

.quantity-input {
    min-height: 70px;
    padding: 15px 25px;
    background-color: transparent;
    border: solid 1px #c0c0c0;
    border-radius: 4px;
    font-size: 20px;
    color: rgba(96, 95, 95, 0.5);
}

@media (min-width: 992px) {
    .gallery-carousel .owl-nav .owl-prev,
    .gallery-carousel .owl-nav .owl-next {
        width: 60px;
        height: 60px;
    }
}

.gallery-carousel .owl-nav .owl-prev .fa,
.gallery-carousel .owl-nav .owl-next .fa {
    font-size: 22px;
}
@media (min-width: 992px) {
    .gallery-carousel .owl-nav .owl-prev .fa,
    .gallery-carousel .owl-nav .owl-next .fa {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .gallery-carousel .owl-dots .owl-dot {
        height: 10px;
        width: 45px;
    }
}
@media (min-width: 1800px) {
    .gallery-carousel .owl-dots .owl-dot {
        height: 10px;
        width: 45px;
    }
}

@media (min-width: 992px) {
    .gallery-carousel .owl-nav {
        right: 10px;
        bottom: 20px;
    }
}

@media (min-width: 992px) {
    .gallery-carousel .owl-nav .owl-next {
        margin-bottom: 5px;
    }
}

.navigation-bar__featured-link:focus,
.navigation-bar__featured-link:hover {
    outline: none;
    color: #ffffff;
    text-decoration: underline;
}

.availability-container {
    text-align: right;
    padding-right: 1rem;
    font-weight: bold;
    margin-top: 1rem;
}

.cart-item-price {
    position: absolute;
    right: 1rem;
}

table tbody td, table tbody th {
    font-size: 15px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 15px 5px;
    word-break: break-word;
}

@media (min-width: 992px) {
    table thead td, table thead th {
        font-size: 25px;
        padding: 0px 10px;
    }

    table tbody td, table tbody th {
        font-size: 20px;
        padding: 15px 5px;
    }
}

.font-normal {
    font-weight: normal;
}

.checkout-form {
}

.checkout-form .checky {
    cursor: pointer;
    padding-left: 25px;
    position: relative;
}

.checkout-form .checky input {
    width: auto;
    position: absolute;
    left: 0;
    top: 7px;
}

.checkout-form p {
}

.checkout-form .btn {
}

.checkout-form input {
    width: 100%;
    background: #f7f7f7;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #dadada;
    height: auto;
}

.checkout-form input:disabled, .checkout-form select:disabled {
    background: #d8d8d8;
    border: 2px solid #b1b1b1;
    opacity: 0.6;
}

.checkout-form select {
    width: 100%;
    background: #f7f7f7;
    padding: 0 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #dadada;
    height: 58px;
}

.checkout-form textarea {
    width: 100%;
    background: #f7f7f7;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #dadada;
}

.checkout-form h3 {
    /*margin-top: 70px;*/
    text-transform: uppercase;
    font-size: 22px;
    position: relative;
    margin-bottom: 50px;
}

.checkout-form h3::after {
    content: ' ';
    width: 35px;
    background: #ef404a;
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
}

.checkout-form .company-info {
    display: none;
}

.checkout-form .form-response > *:first-child {
    margin-top: 50px;
}

.checkout-form .req {
    position: absolute;
    right: 27px;
    top: 3px;
    color: red;
    font-size: 22px;
    font-weight: bold;
}

.enews label {

}

.enews p {
    font-size: 14px;
    line-height: 16px;
}

.text-left {
    text-align: left;
}

.bg-grey {
    background: #f7f7f7;
}

.vat-rate {
    font-size: 12px;
    display: block;
}

.coupon {
    display: inline;
}

.coupon-code {
    padding: 1rem;
    font-weight: bold;
    background: #d8d8d8;
    border: 2px solid #b1b1b1;
    border-radius: 15px;
}

.cart-items-count {
    position: relative;
    font-size: small;
    top: -0.5rem;
}

.subheading-note {
    font-size: 12px;
    padding-left: 2rem;
    font-style: italic;
}

.info-display {
    background: #ef404a;
    padding: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}
