﻿.pull-start {
    float: right !important;
}

.pull-end {
    float: left !important;
}

html[dir="ltr"] .pull-start {
    float: left !important;
}

html[dir="ltr"] .pull-end {
    float: right !important;
}


html[dir="ltr"] .img-flip {
    transform: scaleX(-1);
}

.img-flip-flip {
    transform: scaleX(-1);
}


.space-start {
    margin-right: 5%;
    margin-left: 0%;
}

html[dir="ltr"] .space-start {
    margin-left: 5%;
    margin-right: 0px;
}

.space-end {
    margin-left: 5%;
    margin-right: 0px;
}

html[dir="ltr"] .spac-end {
    margin-right: 5%;
    margin-left: 0%;
}

.abslote-start {
    left: unset;
    right: 0%;
}

.abslote-end {
    left: 0%;
    right: unset;
}

html[dir="ltr"] .abslote-start {
    left: 0%;
    right: unset;
}

html[dir="ltr"] .abslote-end {
    left: unset;
    right: 0%;
}



p, h1, h2, h3, option, select, input {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] p, html[dir="ltr"] h1, html[dir="ltr"] h2, html[dir="ltr"] h3, html[dir="ltr"] option, html[dir="ltr"] select, html[dir="ltr"] input {
    direction: ltr;
    text-align: left;
}

.p3title {
    background: url(../../ImagesNew/media_lids_list/dots.png) no-repeat right center;
    padding-right: 50px;
}

html[dir="ltr"] .p3title {
    background: url(../../ImagesNew/media_lids_list/dots.png) no-repeat left center;
    padding-right: unset;
    padding-left: 50px;
}

a.anchor {
    display: block;
    position: relative;
    top: -400px;
    visibility: hidden;
}

.mobl-hide {
    display: block;
}

.desk-hide {
    display: none;
}

@media (max-width:991px) {
    .mobl-hide {
        display: none;
    }

    .desk-hide {
        display: block;
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: #ccc;*/
    background-color: #094f82;
    -webkit-transition: .4s;
    transition: .4s;
    border-color: black;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
    background-color:#094f82;
}

    .slider.round:before {
        border-radius: 50%;
    }