.tab {
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    line-height: 1.2;
}

.tab:after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0, -50%) rotate(0);
    transform-origin: center center;
    height: 21px;
    width: 21px;
    -webkit-mask-image: url(arrow.svg);
    mask-image: url(arrow.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: .4s all ease;
    transition: .4s all ease;
    background-color: #000;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.tab:hover:after {
    background-color: #fff;
}

.tab.active:after {
    transform: translate(0, -50%) rotate(180deg);
    background-color: #fff;
}

.liss {
    display: none;
    padding: 15px;
}

/*-------------------------------*/
.wrap {
    width: 100%;
}

.wrapxp {
    width: 100%;
    overflow: hidden;
}

/*-------------------------------*/
.editOption-w {
    z-index: 15;
}

.editOption {
    position: absolute;
    right: 0;
    top: 0;
}

.editOption a {
    padding: 6px 15px;
    display: block;
    font-size: 80%;
    background-color: #22d171;
    color: #fff;
}

.editOption a:hover {
    color: #fff;
    background-color: #28a745;
}

/*-------------------------------*/
.schliess {
    content: '';
    display: block;
    background-image: url(../files/default/close.png);
    position: fixed;
    left: 50%;
    top: 15px;
    min-height: 30px;
    width: auto;
    background-size: auto 78%;
    background-repeat: no-repeat;
    background-position: center left;
    cursor: pointer;
    z-index: 10;
    font-size: 30px;
    padding: 0 0 0 36px;
    line-height: 1;
    color: #fff;
    transform: translate(-50%, 0);
}

span.close {
    position: fixed;
    z-index: inherit;
    height: 100vh;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
}

.zframe {
    outline: 0;
}

/*============================================*/
/*    owl style                   */
/*============================================*/
[owl] .owl-dots {
    text-align: center;
    position: absolute;
    width: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

[owl] .owl-dot span {
    height: 13px;
    width: 13px;
    display: block;
    background-color: transparent;
    margin: 0 5px;
    border-radius: 50%;
    border: 2px solid #fff;
}

[owl] .owl-dot.active span {
    background-color: #fff;
}

[owl] .owl-nav button {
    position: absolute;
    z-index: 2;
    font-size: 57px !important;
    margin: 0 15px !important;

}

[owl] .owl-nav button span {
    color: #fff;
}

[owl] .owl-next,
[owl] .owl-prev {
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    z-index: 10;
    line-height: 1;
    border: 0;
    background: transparent;

}

[owl] .owl-prev {
    left: 0;
}

[owl] .owl-next {
    right: 0;
}

[owl] .item {
    height: auto;
    padding: 0 15px;
}

[owl] .owl-prev.disabled,
[owl] .owl-next.disabled {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    [owl] .owl-prev {
        left: 0;
    }

    [owl] .owl-next {
        right: 0;
    }
}

[owl] .owl-carousel .owl-stage-outer {
    overflow: hidden;
}

@media only screen and (max-width: 575px) {
    [owl] .owl-dots {
        display: none;
    }
}

/*============================================*/
/*    owl style                   */
/*============================================*/
/*============================================*/
/*    loader style                   */
/*============================================*/
.lds-dual-ring {
    display: block;
    margin: 0 auto;
    width: 64px;
    height: 64px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid var(--clr01);
    border-color: var(--clr01) transparent var(--clr01) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .72);
    z-index: 20;
}

/*============================================*/
/*    loader style                   */
/*============================================*/

/* The container */
.lw {
    display: block;
    position: relative;
    padding-left: 27px;
    margin-bottom: 9px;
    cursor: pointer;
    line-height: 1.2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.lw input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.lw:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.lw input:checked ~ .checkmark {
    background-color: var(--clr01);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.lw input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.lw .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pages {
    padding-top: 30px;
}

.pages > * {
    width: auto;
}

.pages li {
    padding: 3px;
    font-family: var(--fon-t1);
}

.pages a {
    padding: 3px;
    color: inherit;
}

.pages a.active {
    color: var(--clr01);
}

.etms {
    margin: 0 -6px;
}

.etms .etm {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 6px;
}

.etms .etm.f > * {
    width: 100%;
}

.etms .itm .bimg {
    background-color: var(--clr04)
}

.etms .item > .wrap {
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    /*        border: 1px solid #ccc;*/
    /*        box-shadow: 0 50px 50px -47px rgba(0, 0, 0, 0.45);*/
}

.etms [owl] .thumb .bimg {
    padding-top: 67%;
}

.etms .ttl {
    display: block;
    display: -webkit-box;
    /* max-width: 200px; */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0;
    font-family: var(--font-t2);
    line-height: 1.2;
    padding: 12px;
    padding-bottom: 0;
    margin-bottom: 12px;
}

.etms .tag {
    color: #2ec500;
    font-family: var(--font-t2);
    position: absolute;
    bottom: 0;
    padding: 20px 12px 9px;
    line-height: 1;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6026785714285714) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    font-size: 12px;
}

.etms .desc .itm {
    font-size: 80%;
    color: var(--clr04)
}

.etms .desc {
    padding: 0 12px;
    padding-bottom: 0;
}

.etms .price {
    text-align: right;
    padding: 12px;
    padding-top: 0;
    font-family: var(--font-t2);
    color: var(--clr01);
    font-size: var(--font-l);
    line-height: 1;
}

.etms .disc {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0, -100%);
    font-size: var(--font-s);
    text-decoration: line-through;
    padding: 0 12px;
    line-height: 1
}

.etms .item-w {
    background-color: #eee;
    border-radius: 15px;
    box-shadow: 0 35px 40px -35px rgba(0, 0, 0, 0.5);
}

.etms .mta {
    margin-top: auto;
}

.etms .item-w > .f {
    height: 100%;
    flex-direction: column;
}

.etms .l {
    /*flex: 0 0 12px;*/
    /*max-width: 12px;*/
    flex: 0 0 12px;
    max-width: 12px;    
}

.etms .r {
    /*flex: 0 0 calc(100% - 20px);*/
    /*max-width: calc(100% - 20px);*/
    /*padding-left: 9px;*/
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    padding-left: 9px;    
}

.etms .thumb .bimg {
    padding-top: 67%;
}
.etms a {
    color: inherit;
    height: 100%;
}
.etms a:hover {
    color: inherit;
}
@media only screen and (max-width: 767px) {
    .etms .l {
        flex: 0 0 12px;
        max-width: 12px;
    }

    .etms .r {
        flex: 0 0 calc(100% - 12px);
        max-width: calc(100% - 12px);
    }
}

@media only screen and (max-width: 575px) {
    .etms .etm {
        flex: 0 0 50%;
        max-width: 50%;
    }
}