﻿
/*#region direction*/

.ar-direction-ltr {
    direction: ltr;
}

.ar-direction-rtl {
    direction: rtl;
}

/*#endregion*/

/*#region float*/

.ar-right {
    float: right !important;
}

.ar-left {
    float: left !important;
}
/*#endregion*/

/*#region text*/
.ar-text-center {
    text-align: center !important;
}

.ar-text-left {
    text-align: left;
}

.ar-text-right {
    text-align: right;
}


.ar-align-item-center {
    display: flex;
    align-items: center;
    /*justify-content: end;*/
}

.ar-text-line-through {
    text-decoration: line-through;
}

.ar-triple-dot {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*#endregion*/

/*#region color*/

.ar-color-black {
    color: black !important;
}

.ar-color-white {
    color: white !important;
}

.ar-color-red {
    color: red !important;
}

/*#endregion*/

/*#region animation*/

.ar-shake-animation {
    animation: shakeFrames linear 1.8s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: shakeFrames linear 1.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: shakeFrames linear 1.8s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: shakeFrames linear 1.8s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: shakeFrames linear 1.8s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes shakeFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    10% {
        transform: rotate(-5deg) scaleX(0.5) scaleY(0.5);
    }

    20% {
        transform: rotate(-5deg) scaleX(0.6) scaleY(0.6);
    }

    30% {
        transform: rotate(5deg) scaleX(0.8) scaleY(0.8);
    }

    40% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    60% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    70% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    80% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    90% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-moz-keyframes shakeFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    10% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    20% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    30% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    40% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    60% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    70% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    80% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    90% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-webkit-keyframes shakeFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    10% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    20% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    30% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    40% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    60% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    70% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    80% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    90% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-o-keyframes shakeFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    10% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    20% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    30% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    40% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    60% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    70% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    80% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    90% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-ms-keyframes shakeFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    10% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    20% {
        transform: rotate(-5deg) scaleX(0.9) scaleY(0.9);
        filter: grayscale(0.4);
    }

    30% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    40% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    50% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    60% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    70% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    80% {
        transform: rotate(-5deg) scaleX(1) scaleY(1);
    }

    90% {
        transform: rotate(5deg) scaleX(1) scaleY(1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

.ar-scale-animation {
    animation: scaleFrames linear 1.8s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    -webkit-animation: scaleFrames linear 1.8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
    -moz-animation: scaleFrames linear 1.8s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: scaleFrames linear 1.8s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: scaleFrames linear 1.8s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
}

@keyframes scaleFrames {
    0% {
        transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    40% {
        transform: rotate(0deg) scaleX(0.80) scaleY(0.80);
    }

    80% {
        transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-moz-keyframes scaleFrames {
    0% {
        -moz-transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    40% {
        -moz-transform: rotate(0deg) scaleX(0.80) scaleY(0.80);
    }

    80% {
        -moz-transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        -moz-transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-webkit-keyframes scaleFrames {
    0% {
        -webkit-transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    40% {
        -webkit-transform: rotate(0deg) scaleX(0.80) scaleY(0.80);
    }

    80% {
        -webkit-transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        -webkit-transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-o-keyframes scaleFrames {
    0% {
        -o-transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    40% {
        -o-transform: rotate(0deg) scaleX(0.80) scaleY(0.80);
    }

    80% {
        -o-transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        -o-transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

@-ms-keyframes scaleFrames {
    0% {
        -ms-transform: rotate(0deg) scaleX(1.00) scaleY(1.00);
    }

    40% {
        -ms-transform: rotate(0deg) scaleX(0.80) scaleY(0.80);
    }

    80% {
        -ms-transform: rotate(0deg) scaleX(1.1) scaleY(1.1);
    }

    100% {
        -ms-transform: rotate(0deg) scaleX(1) scaleY(1);
    }
}

/*#endregion*/

/*#region font*/

.ar-font-size-12 {
    font-size: 12px !important;
}

.ar-font-size-13 {
    font-size: 13px !important;
}

.ar-font-size-15 {
    font-size: 15px !important;
}

/*#endregion*/

/*#region spinner*/

/*.ar-spinner-inline {
    color: #99d3d8;
    font-size: 29px;
    padding: 0 18px;
}

.ar-spinner-over {
    position: absolute;
    top: calc(50% - 21px);
    left: calc(50% - 21px);
    color: #99d3d8;
    font-size: 30px !important;
    z-index: 10;
}

.ar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    top: 0px;
    left: 0px;
    opacity: 0;*/ /* in FireFox */
/*filter: alpha(opacity=0);*/ /* in IE */
/*}

.ar-gray-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 150%;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: #2a2a2a;
    opacity: 0.7;
    filter: alpha(opacity=0.1);*/ /* in IE */
/*}

    .ar-gray-overlay.active {
        display: block;
    }

    .ar-transparent-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 150%;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: transparent;
    opacity: 0.7;
    filter: alpha(opacity=0.1);*/ /* in IE */
/*}

    .ar-transparent-overlay.active {
        display: block;
    }

    .ar-loader-button {
    position: relative;
}

    .ar-loader-button .ar-spinner-over {
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        color: #fff;
        font-size: 20px !important;
    }

    .ar-loader-button:hover .ar-spinner-background,
    .ar-loader-button:active .ar-spinner-background,
    .ar-loader-button:focus .ar-spinner-background {
        background-color: #00a3b1;
    }

.ar-spinner-background {
    position: absolute;
    height: 100%;
    width: 96%;
    margin: auto;
    border-radius: 5px;
    background-color: #00b0bf;
    display: block;
    top: 0px;
}

    .ar-spinner-background:hover {
        background-color: #00a3b1;
    }*/

/*#endregion*/

/*#region userMsg*/
.ar-required {
    -webkit-box-shadow: 0px 0px 4px 0px rgba(232,30,138,0.6) !important;
    -moz-box-shadow: 0px 0px 4px 0px rgba(232,30,138,0.6) !important;
    box-shadow: 0px 0px 4px 0px rgba(232,30,138,0.6) !important;
}

.ar-user-msg-overlay {
    z-index: 10000;
    position: fixed;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    color: #f9f9f9;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    background-color: rgba(111, 111, 111, 0.9);
}

    .ar-user-msg-overlay p {
        margin-bottom: 0 !important;
        padding: 5px 10px;
        font-size: 13px !important;
    }

    .ar-user-msg-overlay i {
        position: relative;
        top: 1px;
        padding-left: 6px;
    }

        .ar-user-msg-overlay i.fg-close {
            color: #ed3e5c;
        }

        .ar-user-msg-overlay i.fg-done-outline {
            color: #64c85f;
        }

        .ar-user-msg-overlay i.fg-warning {
            color: #ebc825;
        }

        .ar-user-msg-overlay i.fg-check {
            color: #53a980;
        }

@media(max-width:992px) {
    .ar-user-msg-overlay {
        left: 50%;
        top: 8%;
        transform: translate(-50%, -50%);
    }

        .ar-user-msg-overlay p {
            width: 300px;
        }
}

.ar-spinner-inline {
    color: #99d3d8;
    font-size: 29px;
    padding: 0;
    margin: 0;
}

*:not(.modal):has(#wave-loader.inline-enable) {
    position: relative;
}

    .ar-spinner-inline.center {
        position: absolute;
        z-index: 13;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: max-content;
    }

.ar-spinner-over {
    position: absolute;
    top: 50%;
    left: calc(50% - 15px);
    color: #99d3d8;
    font-size: 30px !important;
    z-index: 10;
    display: flex;
}

.ar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2000;
    top: 0px;
    left: 0px;
    opacity: 0; /* in FireFox */
    filter: alpha(opacity=0); /* in IE */
}

.ar-gray-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 150%;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: #2a2a2a;
    opacity: 0.7;
    filter: alpha(opacity=0.1); /* in IE */
}

    .ar-gray-overlay.active {
        display: block;
    }

.ar-transparent-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 150%;
    z-index: 100;
    top: 0px;
    left: 0px;
    background-color: transparent;
    opacity: 0.7;
    filter: alpha(opacity=0.1); /* in IE */
}

    .ar-transparent-overlay.active {
        display: block;
    }

.ar-loader-button {
    position: relative;
}

    .ar-loader-button .ar-spinner-over {
        position: absolute;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        color: #fff;
        font-size: 20px !important;
    }

    .ar-loader-button:hover .ar-spinner-background,
    .ar-loader-button:active .ar-spinner-background,
    .ar-loader-button:focus .ar-spinner-background {
        background-color: #f25022;
    }

.ar-spinner-background {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 2px;
    /*background-color: #f25022;*/
    background-color: var(--main-color);
    display: block;
    top: 0px;
    right: 0;
    left: 0;
}

    .ar-spinner-background:hover {
        background-color: #f25022;
    }

/*#endregion*/

/*#region display*/
.ar-display-block {
    display: block;
}

.ar-display-inline-block {
    display: inline-block !important;
}

.ar-display-none {
    display: none !important;
}

.ar-display-flex {
    display: flex;
}

.ar-visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.ar-scroll-y {
    overflow-y: scroll;
}

/*#endregion*/

/*#region position*/
.ar-position-relative {
    position: relative;
}

.ar-position-unset {
    position: unset;
}

.ar-position-fixed {
    position: fixed;
}
/*#endregion*/

/*#region visibility*/
.ar-visibility-hidden {
    visibility: hidden;
}
/*#endregion*/

/*#region width*/

.ar-width-25 {
    width: 25px;
}

.ar-width-40 {
    width: 40px !important;
}

.ar-width-45 {
    width: 45px !important;
}

.ar-width-50 {
    width: 50px !important;
}

.ar-width-60 {
    width: 60px !important;
}

.ar-width-70 {
    width: 70px !important;
}

.ar-width-75 {
    width: 75px !important;
}

.ar-width-80 {
    width: 80px !important;
}

.ar-width-90 {
    width: 90px !important;
}

.ar-width-100 {
    width: 100px !important;
}

.ar-width-110 {
    width: 110px !important;
}

.ar-width-120 {
    width: 120px !important;
}

.ar-width-125 {
    width: 125px !important;
}

.ar-width-130 {
    width: 130px !important;
}

.ar-width-140 {
    width: 140px !important;
}

.ar-width-150 {
    width: 150px !important;
}

.ar-width-155 {
    width: 155px !important;
}

.ar-width-160 {
    width: 160px !important;
}

.ar-width-165 {
    width: 165px !important;
}

.ar-width-175 {
    width: 175px !important;
}

.ar-width-200 {
    width: 200px !important;
}

.ar-width-250 {
    width: 250px !important;
}

.ar-width-300 {
    width: 300px !important;
}

.ar-width-350 {
    width: 350px !important;
}

.ar-width-400 {
    width: 400px !important;
}

.ar-width-500 {
    width: 500px !important;
}

.ar-width-550 {
    width: 550px !important;
}

.ar-width-700 {
    width: 700px !important;
}

.ar-width-736 {
    width: 736px !important;
}

.ar-width-80-percent {
    width: 80% !important;
}

.ar-width-100-percent {
    width: 100% !important;
}

.ar-min-width-145 {
    min-width: 145px !important;
}
/*#endregion*/

/*#region height*/

.ar-height-0 {
    height: 0;
}
.ar-height-25 {
    height: 25px;
}

.ar-height-150 {
    height: 150px;
}

.ar-height-200 {
    height: 200px;
}

.ar-height-300 {
    height: 300px !important;
}

.ar-min-height-40 {
    min-height: 40px;
}

.ar-min-height-50 {
    min-height: 50px;
}

.ar-min-height-500 {
    min-height: 500px;
}
/*#endregion*/

/*#region margin*/

.ar-margin-auto {
    margin: auto !important;
}

.ar-margin-0 {
    margin: 0px !important;
}

.ar-margin-bottom-0 {
    margin-bottom: 0 !important;
}

.ar-margin-bottom-20 {
    margin-bottom: 20px !important;
}

.ar-margin-bottom-10 {
    margin-bottom: 10px !important;
}

.ar-margin-bottom-60 {
    margin-bottom: 60px !important;
}

.ar-margin-left-30 {
    margin-left: 30px !important;
}

.ar-margin-left-12 {
    margin-left: 12px !important;
}

.ar-margin-left-10 {
    margin-left: 10px !important;
}

.ar-margin-left-5 {
    margin-left: 5px !important;
}

.ar-margin-top-0 {
    margin-top: 0px !important;
}

.ar-margin-top-5 {
    margin-top: 5px !important;
}

.ar-margin-top-10 {
    margin-top: 10px;
}

.ar-margin-top-16 {
    margin-top: 16px !important;
}

.ar-margin-top-20 {
    margin-top: 20px !important;
}

.ar-margin-top-24 {
    margin-top: 24px;
}

.ar-margin-top-40 {
    margin-top: 40px !important;
}

.ar-margin-top-70 {
    margin-top: 70px !important;
}

.ar-margin-top-74 {
    margin-top: 74px !important;
}

.ar-margin-top-100 {
    margin-top: 100px;
}

.ar-margin-top-130 {
    margin-top: 130px !important;
}

.ar-margin-top-170 {
    margin-top: 170px !important;
}

.ar-margin-top-184 {
    margin-top: 184px !important;
}

.ar-margin-top-185 {
    margin-top: 185px !important;
}

.ar-margin-top-200 {
    margin-top: 200px;
}

/*#endregion*/

/*#region padding*/
.ar-padding-left-2 {
    padding-left: 2px;
}

.ar-padding-0 {
    padding: 0px !important;
}

.ar-padding-4 {
    padding: 4px !important;
}

.ar-padding-8 {
    padding: 8px !important;
}

.ar-padding-15 {
    padding: 15px !important;
}

.ar-padding-right-0 {
    padding-right: 0px !important;
}

.ar-padding-left-0 {
    padding-left: 0px !important;
}

.ar-padding-top-10 {
    padding-top: 10px;
}

.ar-padding-left-4 {
    padding-left: 4px !important;
}

.ar-padding-right-4 {
    padding-right: 4px !important;
}

.ar-padding-bottom-60 {
    padding-bottom: 60px !important;
}
.ar-padding-bottom-100 {
    padding-bottom: 100% !important;
}
/*#endregion*/

/*#region Bootstarp 3.7*/

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

/*#endregion*/

/*#region Modules*/

/*#region ProductVideoSlider*/
.ar-product-video-slider {
    width: 100%;
    padding: 0;
    margin: 0 !important;
}

    .ar-product-video-slider .ar-title {
        font-family: iranyekan,roboto,Arial !important;
        display: inline-block;
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        color: black;
    }

.ar-video-view > span {
    display: block;
    padding-top: 56.2%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.ar-video-gallery {
    width: 100%;
    background-color: white;
    color: black;
    margin: 0px auto 0 auto !important;
    padding: 0 !important;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
}

.ar-video-detail {
    position: absolute;
    top: 0;
    right: 32px;
    color: white;
    z-index: 2;
    opacity: 0;
}

    .ar-video-detail .ar-video-title {
        font-size: 16px;
        margin: 0;
    }

    .ar-video-detail .ar-video-overview {
        font-size: 13px;
        margin: 0 0 0 20px;
        color: #bbb;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 15px;
    }

.h_iframe-aparat_embed_frame iframe {
    background:black;
    border: 0;
    padding: 0;
}

.ar-video-carousel .item {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 2;
}

    .ar-video-carousel .item.active {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.ar-video-list {
    direction: ltr;
    padding: 0;
    overflow-y: auto;
    border-right: 1px solid #d1d1d1;
}

    .ar-video-list::-webkit-scrollbar {
        width: 3px;
    }

    .ar-video-list::-webkit-scrollbar-thumb {
        background: #adadad;
    }

    .ar-video-list li.active {
        background-color: #eee;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .ar-video-list li {
        cursor: pointer;
        direction: rtl;
    }

.ar-video-carousel .owl-item {
    position: relative;
}

    .ar-video-carousel .owl-item:not(:last-child):before {
        content: "";
        width: 1px;
        height: 70%;
        position: absolute;
        top: 15%;
        left: 0;
        background-color: #d1d1d1;
    }

    .ar-video-list li > div, .ar-video-carousel .item > div {
        padding: 10px;
        display: flex;
        align-items: center;
    }

        .ar-video-list li > div > div, .ar-video-carousel .item > div > div {
            display: inline-block;
            margin: 0 5px;
            flex-grow: 1;
            overflow: hidden;
        }

    .ar-video-list li p.ar-video-title, .ar-video-carousel .item p.ar-video-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 13px;
    }

    .ar-video-list li p.ar-video-overview, .ar-video-carousel .item p.ar-video-overview {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 11px;
        line-height: 11px;
        color: #757575;
    }

    .ar-video-list li img, .ar-video-carousel .item img {
        width: 50px;
        height: 50px;
        border-radius: 3px;
    }

    .ar-video-list li a i, .ar-video-carousel .item a i {
        font-size: 2em;
        color: var(--primary);
        font-weight:300;
    }

.ar-video-carousel .owl-stage {
    padding-right: 0 !important;
}

.ar-video-list li .ar-video-separator {
    position: absolute;
    height: 1px;
    background-color: #e5e5e5;
    right: 10px;
    left: 10px;
    bottom: 0;
}

.ar-video-carousel .item .ar-video-separator {
    position: absolute;
    width: 1px;
    background-color: #d1d1d1;
    top: 7px;
    left: 0;
    bottom: 7px;
}


.ar-video-carousel .owl-item {
    width: 270px !important;
}

@media(max-width:768px) {

    .ar-video-frame .h_iframe-aparat_embed_frame iframe {
        border-top-left-radius: 10px;
        border-bottom-right-radius: 0;
    }

    .ar-video-carousel {
        border-top: 1px solid #d1d1d1;
    }

        .ar-video-carousel .item p.ar-video-title {
            font-size: 12px;
        }

        .ar-video-carousel .item p.ar-video-overview {
            font-size: 10px;
            line-height: 11px;
        }

    .ar-video-detail {
        display: none;
    }
}

@media(max-width:992px) {
    .ar-product-video-slider .ar-title {
        font-size: 15px;
    }
}
/*#endregion*/

/*#endregion*/

/*#region Top*/
.ar-top-130 {
    top: 130px;
}
/*#endregion*/

/*#region Z-Index*/
.ar-z-index-99 {
    z-index: 99 !important;
}
/*#endregion*/

/*#region Shadow*/
.ar-shadow {
    box-shadow: 0 0.125rem 0.125rem 0 #0000001a;
}
/*#endregion*/

/*#region Cursor*/
.ar-curosr-pointer {
    cursor:pointer !important;
}
.ar-curosr-auto {
    cursor:auto !important;
}
/*#endregion*/
