<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&amp;display=swap');
/* font-family: 'Roboto', sans-serif; */

:root {
    --black: #000;
    --black1: #333;
    --lightblack:#e1e1e1;
    --white: #fff;
    --red:#D10119; 
    --textcolor:#6E6E6E;
    --textcolor1:#808084;
    --cmn-trans: all .5s ease-in-out 0s; 
    --bodyfont:'Roboto', sans-serif;
}
*{ 
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyfont); 
    letter-spacing: 0em;
}
.clear{
    clear:both;     
}
.clear:after{
    position: relative;
    display: table;
    width: 100%;
    clear: both;
    content:"";
}
a{
    text-decoration: none;
    display: inline-block;
}
i,span{
    display: inline-block;
}
.container{
    width:1170px;
    margin: 0 auto;
}
section{
    padding:80px 0 0;
}
ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
img{
    max-width: 100%;
} 
p{
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
 font-family: var(--bodyfont); 
}
/* project start */
 
.loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.69); /* Red semi-transparent background */
  z-index: 9999;
}

.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #d10119;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px; /* Half of the loader height */
  margin-left: -30px; /* Half of the loader width */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/**header**/
.site-header{
    background: var(--white);
    box-shadow: 0px 0px 30px 8px rgba(0, 0, 0, 0.20);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;    
    z-index: 123;
}

.headerTop{
    background: var(--red);
    padding: 10px 0;
    font-size: 14px;
    line-height: 18px;
    transition: .5s;
    margin-top: 0;
}
.stickey .headerTop{
    margin-top: -40px;
}
/* .headerTopHold{} */
.headerTopHold ul{
    list-style: none;
    margin:0;
    padding: 0;
}
.headerTopHold ul li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 40px;
}
.headerTopHold a{
    color: var(--white);
}
.headerTopHold a:hover{
    color: var(--lightblack);
}
.headerTopHold a i{
    display: inline-block;
    margin-right: 5px;
    font-size: 20px;
    vertical-align: middle;
}


.headerBottom{
    padding: 12px 0;
    transition: 0.5s;
}
.stickey .headerBottom{
    padding: 0;
}
.headerBottomHold{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    display: inline-block;
}
.logo img{
    width: auto;
}
.headerRight{
    display: inline-flex;
    align-items: center;
}
.hdlist{
    list-style: none;
    margin: 0  40px 0 0;
    padding: 0;
    text-align: right;
}
.hdlist li{
    display: block; 
    margin: 0 0 5px;
}
.hdlist li:last-child{
    margin-bottom: 0;
}
.hdlist li a{
    color: var(--textcolor1);
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}


.menuholder{
    position: relative;
}
.hdmenu{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    box-shadow: 0 5px 10px 0 #ddd;
    width: 200px;
    right: 0;
    top: 65px;
    background: #fff;
    padding: 10px;

    display:  none;
}
.hdmenu li{
    border-bottom: 1px dashed #eee;
}
.hdmenu li a{
    display: block;
    padding: 5px 0;
    color: var(--black1)
}
.hdmenu li a i{
    color: var(--red);
    display: inline-block;
    margin-right: 8px;
}
.hdmenu li a:hover{color: var(--red);}
/**menuholder**/
/* .menuholder{} */

/**main**/
.mainwrapper{
    padding: 80px 0;
    margin-top: 138px;
}

/* .sideon{} */

.sidecross{
    position: fixed;
    left: 0;
    top: 18px; 
    transition: .5s;
    border: 1px solid #E4E6EF;
    background: #fff;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 124;
    transition: .5s;
}
.sidecross.active{
    left: 280px;
}
.sidemenu.active .sidecross{
    opacity: 1;
}
.sidemenu{
    width: 300px;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #fff;
    z-index: 123;
    transition: .5s;
    transform: translate(-100% ,  0);
    box-shadow: 0px 0px 30px 8px rgba(0, 0, 0, 0.15); 
    text-align: center;
    
}
.sdHeader{
    padding: 12px;
}
.sdFooter{
    padding: 12px;
}
.sidemenu .logo{
    padding: 0 0 15px 0;
}
.sidemenu.active{
    transform: translate(0 ,  0);
}
 
.sidemenu h3{
    background: var(--red);
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
}
.sdFooter{
    text-align: center;
    margin-top: 50px;
    background: #eee;
    border-radius: 30px 30px 0 0;
}
.sdFooter ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
/* .sdFooter ul li{} */
.sdFooter ul li a{
    display: block;
    font-size: 13px;
    font-weight: 500;
}
.sdFooter ul li a span{
    display: block;
}
.sdFooter ul li a span.ico{
    display: inline-block;
    font-size: 20px;
    color: var(--red);
}

.sdContent{
    padding: 0 0;
    overflow: auto;
    height: calc(100% -  165px);
} 
.sdContent::-webkit-scrollbar {
  width: 5px;
} 
.sdContent::-webkit-scrollbar-track {
  background: #f1f1f1;
} 
.sdContent::-webkit-scrollbar-thumb {
  background: var(--red);
} 
 
.menulist{
    list-style: none;
    margin: 0;
    padding: 0 12px;
}
.menulist li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px dashed #eee;
    padding: 18px 0;
}
.menulist li:last-child{
    border-bottom: none;
}
.menulist li span{
    display: block; 
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: var(--black1); 
    text-align: left;   
}
.menulist li:nth-last-child(2) span{
    width: 50%;
    color: var(--black);
}
.menulist li:nth-last-child(2) span:nth-child(1),
.menulist li:nth-last-child(2) span:nth-child(2){
    font-weight: bold;
    color: var(--black1);
    font-size: 17px;
    line-height: 25px;
}
.menulist li:nth-last-child(2) span:nth-child(3),
.menulist li:nth-last-child(2) span:nth-child(4){

    font-weight: 400;
        font-size: 17px;
    line-height: 25px;
    color: var(--black1);
}
.menulist li span:nth-child(2n){
    color: #333;
}
.menulist li span.pr,
.menulist li:last-child span.pr{display: inline-flex;
justify-content: flex-end;}
.menulist li:last-child span{
    font-size: 20px;
    display: inline-block;
    width: auto;
    font-weight: bold;
    color: var(--black);
}
 
.sdFooter{
    padding: 15px 20px;
}
.sdFooter a.sidebtn{
    margin-top: -50px;
    margin-bottom: 15px;
}
.sdFooter  ul li{
    margin: 0 0 20px;
}
.sdFooter address,
.sdFooter a{
    font-size: 12px;
    line-height: 20px;
    color: #2E2E2E;
    font-weight: bold;
    margin: 0;
    display: block;
}

/**middle paart**/

.mainwrapperHolder{
    margin-right: 0;
    transition: .5s;
}
.sideon{
    margin-left: 100px;
}

.headerTopHold,.headerBottomHold,.mainwrapperHolder{
    transition: .5s;
}

.arrowholder { 
    position: relative;
    background: var(--white);
    box-shadow: 0px 0px 30px 8px #00000033;
    text-align: center; 
    margin: 0 auto;
    color: var(--textcolor);
}
.arrowholderContent .arr_bar {
    width: 100%;
    height: 10px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
}
.arrowholderContent .arr_bar .bar { 
    height: 10px;
    background: var(--red);
    position: absolute;
    left: 0;
    top: 0;
    text-indent: -9999px;
}

.arrowtop {
    position: relative;
}
.arrowholder .arrowholderContent .arrowholderContent-head-sub .arrowtop {
    padding: 35px 35px 15px;
}
.arrowholder .arrowholderContent .arrowholderContent-head h3 {
    font-size: 27px;
    font-weight: 700;
    line-height: 32px;
    color: var(--red);
    padding-bottom: 5px;
}
.arrowholder .arrowholderContent .arrowimgholder {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 25px 0 0 0;
}
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main {
    border: 1px solid #DDDDDD;
    padding: 25px 30px;
    border-radius: 5px;
    width:28%;
    cursor: pointer;
    min-height: 145px;
    display: flex;
    justify-content: center;
    /*align-items: flex-end;*/
    position: relative;
    font-size: 15px;
}
.arrowholder .arrowholderContent .arrowimgholder.arrowimgholder2 .arrowimgholder-main {
    width:40%;
    min-height: 403px;
}
.arrowholder .arrowholderContent .arrowimgholder.arrowimgholder2.arrowimgholder2ex 
.arrowimgholder-main {
 
    min-height: inherit;
}
.arrowsub1width23 {
    width: 22.5% !important;
}
.arrowimgholder-main.active,
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main.active { 
   border: 1px solid var(--red);
}

.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-price.active .arrowimg1{
border: 1px solid var(--red);   
}
.nprice{
    display: inline-block;
    background: #f5f5f5;
    padding: 3px 25px;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
    margin-top: 8px;
}
.arrowimgholder-main.active:after,
.arrowimgholder-price.active .arrowimg1:after{
    position: absolute;
    content: "";
        right: 0;
    top: 3px;

    background: url(../images/tick.svg) no-repeat 0 0;
    width: 20px;
    height: 20px;
}
.arrowholder .arrowholderContent .arrowimgholder-mainsub .arrowimg-img-sub {
    padding: 0 0 10px 0;
}

.arrowholder .arrowholderContent .arrowimgholder-price .arrowimg-img-sub {
    padding: 0 0 10px 0;
}
.arrowholder .arrowholderContent .arrowimgholder-price .arrowimg-img-sub img{
    height: 70px;
}
/*.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main span {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--textcolor1);
}*/
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main h5,
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-price h5{
    font-size: 17px;
    font-weight: 400;
    margin: 0 0 10px;
}
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main span.sp,
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-price span.sp{
    font-size: 14px;
    display: block;
    color: var(--red);
}
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main p,
.arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-price p{
    font-size: 12px;
    line-height: 22px;
}
.arrowholder .arrowholderContent .arrowimgholder 
.arrowimgholder-price.arrowimgholder-main{
    padding: 0;
    border: none;

}
.arrowimgholder-price .arrowimg1{
        border: 1px solid #DDDDDD;
    padding: 25px 30px 80px;
    border-radius: 5px; 
    cursor: pointer; 
    height: 100%;
    width: 100%;

}
.arrowimgholder-price .incr_arr{
    position: absolute;
    bottom: 10px;
}
/*.arrowimgholder-price.step11_product .arrowimg1{
    padding: 25px 30px 25px;
}
.arrowimgholder-price.step11_product .incr_arr{
    position: relative;
    bottom: auto;
}*/
.arrowimgholderfull .ico{
    display: inline-block;
}
.arrowimgholderfull p{
    margin: 0 0 20px;
}

.incr_arr{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


.incr_arr .minus,
.incr_arr .plus {margin: 0 5px; 
    font-size: 35px; line-height: 52px; display: inline-block;
    font-style: normal; color: var(--black);
}
.incr_arr input{margin: 0 10px; 
    width: 50px;
    height: 40px;
    padding: 5px;
    font-size: 40px;
    text-align: center;
    border: 1px solid var(--black);
}

.arrowbtn {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrowbtn &gt;*{
    margin: 0 5px;
}
.arrowbtn .frmbtn, .arrowbtn .time {
    padding: 14px 120px;
    font-size: 18px;
    font-weight: 700;
    line-height: 16px;
    color: var(--black);
    text-align: center;
    border: 1px solid #EEEEEE;
    background: #EEEEEE;
    vertical-align: middle;
    border-radius: 4px;
    transition: .5s;
}
.arrowbtn .time i{
    display: inline-block;
    margin-right: 5px;
}
.arrowbtn .frmbtn:hover{
    background: var(--red);
    border: 1px solid  var(--red);
    color: #fff;
}
.arrowbtn .time {
    background:var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    font-size: 12px;
    text-align: center;
    padding: 14px 18px; 
    display: inline-block;
}
.arrowholderContent .arrowfoot {
    border-top: 1px solid #DDDDDD;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}
.arrowfoot .clock, .arrowholderContent .arrowfoot .img-down {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.arrowholderContent .arrowfoot .clock {
    gap: 20px;
}
.arrowholderContent .arrowfoot .clock li i {
    color: var(--red);
}
.arrowholderContent .arrowfoot .clock li p {
     color: var(--textcolor);
}

.arrowbtn .frmbtn {
    text-transform: uppercase;
}
.arrowbtn + p{
    margin-top: -10px;
    margin-bottom: 20px;
}

.arrowholderContent .arrowfoot .clock, .arrowholderContent .arrowfoot .img-down {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
} 
.arrowholderContent .arrowfoot .img-down {
    gap: 5px;
}

.arrowholderContent .arrowfoot .img-down img {
    width: 85px; 
}


.popbackarr {

    background: #717171;
    color: #3c3c3c; 
    font-size: 12px;
    display: inline-block;
    border-radius: 6px;
    color: var(--white);
    padding: 10px 12px;
}
.popbackarr img{
    display: inline-block;
    margin-right: 5px;
}
.popbackarr:hover{
    color: #fff;
}


    .range-slider{
        width: 100%;
        margin: 0 auto;
        position: relative;
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }
    .rangevalue{
        display: flex;
        justify-content: center;
    }
      #range { appearance: none;-webkit-appearance: none; width: 100%; }
    #range:focus { outline: none; }

    #range::before, #range::after {
        position: absolute;
        top: 2rem;
        color: #333;
        font-size: 14px;
        line-height: 1;
        padding: 3px 5px;
        background-color: rgba(0,0,0,.1);
        border-radius: 4px;
    } 
    #range::-webkit-slider-runnable-track {
        width: 100%;
        height: 1rem;
        cursor: pointer; 
        background: linear-gradient(90deg, #6BA132 var(--range-progress), #dee4ec var(--range-progress));
        border-radius: 1rem;
    }
    #range::-webkit-slider-thumb {
        -webkit-appearance: none;
        border: 0.25rem solid #6BA132;
        box-shadow: 0 1px 3px rgba(0,0,255,.3);
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        height: 32px; width: 32px;
        transform: translateY(calc(-50% + 8px));
    }

    #tooltip span {
       
        text-align: center;
        display: block; 
        color: #000;  
        font-size: 1.25rem; 
    }

/**range-slider**start**/
 
        .range-slider {
          margin: 60px 0 0 0%;
        }

        .range-slider {
          width: 100%;
          max-width: 50%;
          margin: 40px auto;
        }
        .tooltipholder{
            display: table; 
            border: 1px solid #ddd; 
            padding: 5px 40px;
            min-width: 300px;
            font-size: 42px;
            line-height: 42px;
            color: var(--black);
            margin: 0 auto 30px;
        }

        .range-slider__range {
          appearance: none;
          -webkit-appearance: none;
          width: calc(100% - (73px));
          height: 10px;
          border-radius: 5px;
          background: #f0f;
          outline: none;
          padding: 0;
          margin: 0;
        }
        .range-slider__range::-webkit-slider-thumb {
          -webkit-appearance: none;
                  appearance: none;
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: var(--red);
          cursor: pointer;
          -webkit-transition: background 0.15s ease-in-out;
          transition: background 0.15s ease-in-out;
        } 
        .range-slider__range::-moz-range-thumb {
          width: 20px;
          height: 20px;
          border: 0;
          border-radius: 50%;
          background: var(--red);
          cursor: pointer;
          -moz-transition: background 0.15s ease-in-out;
          transition: background 0.15s ease-in-out;
        } 

        .range-slider__value {
          display: inline-block;
          position: relative;
          width: 60px;
          color: #fff;
          line-height: 20px;
          text-align: center;
          border-radius: 3px;
          background: #2c3e50;
          padding: 5px 10px;
          margin-left: 8px;
        }
        .range-slider__value:after {
          position: absolute;
          top: 8px;
          left: -7px;
          width: 0;
          height: 0;
          border-top: 7px solid transparent;
          border-right: 7px solid #2c3e50;
          border-bottom: 7px solid transparent;
          content: "";
        }

        ::-moz-range-track {
          background: #d7dcdf;
          border: 0;
        }

       
    /**range-slider**end**/


    .arrbtmlist{
        padding:25px 0 0;
    }
    .arrbtmlist ul{
        list-style: none;
        margin: 0;
        padding: 0;
        color: var(--black1);
    }
    .arrbtmlist ul li{
        display: flex;
        justify-content: center;
        margin: 0 0 12px;
        align-items: center;
    }
    .arrbtmlist ul li p{
        font-weight: bold;
    }
    .arrbtmlist ul li .arrbtmlistright{
        margin-left: 15px;
    }
    .arrbtmlist ul li .arrbtmlistright div{
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }
    .arrbtmlist ul li .arrbtmlistright input{
        padding: 6px;
        border: 1px solid #ddd;
    }

    .price-tag {
        width: max-content;
        margin: auto;
        background: #EEEEEE;
        color: #000;
        padding: 5px 26px;
        font-weight: 600;
        font-size: 16px;
        margin-top: 12px;
    }
    .cloear-list {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin: 8px 0px;
    }
    .cloear-list li {
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #000;
    }
    .cloear-list li div img {
        filter: grayscale(1);
        opacity: 0.5;
    }
    .arrowimgholder-main.arrowimgholder-mainsub.active .cloear-list li div img {
        filter: none;
        opacity: 1;
    }

/**arrowimgholderForm**/
.arrowimgholderForm{
    max-width: 550px;
    margin: 0 auto;
}
.arrowimgholderForm .form-group{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 15px;
}
.arrowimgholderForm .form-group &gt;label{
    width: 25%;
    text-align: right;
    padding-right:25px;
    color: var(--black1);
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
}
.arrowimgholderForm .form-group .form-inp{
    width: 70%;
    text-align: left;
}
.arrowimgholderForm .form-group input,
.arrowimgholderForm .form-group textarea,
.arrowimgholderForm .form-group select{
    width:100%;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 8px;
}
.arrowimgholderForm .form-group textarea{
    height: 80px;
}
.arrowimgholderForm .form-group input[type="checkbox"]{
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.arrowimgholderForm .form-group input[type="checkbox"] + label{
    
    display: inline-block;
    vertical-align: middle;
    width: 70%;
    font-size: 10px;
    line-height: 14px;
    text-align: left;
}

.image-preview{
    margin: 15px 0 0 0;
}
.image-preview img{
    max-width: 200px;
}

.uploadholder{}
.uploadholder ul + p{
        max-width: 40%;
    color: var(--black);
    margin: 20px auto 20px;
    line-height: 34px;
}
.uploaddbox{}
.uploaddbox input[type="file"]{
    display: none;
}
.uploaddbox label{
    display: inline-block;
    background: rgba(204,0,0,.1);
    border: 1px dashed var(--red);
    padding:40px 60px; 
    border-radius: 5px;
    cursor: pointer;
}
.uploaddbox .ico{
    display: inline-block;
    margin: 0 0 5px;
}
.uploaddbox h5{
    font-size: 19px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--black);
}
.uploaddbox span{
    display: block;
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
}

.arrbtmlistright1 span{
    font-size: 14px;
    font-weight: 600;
    color: var(--black1);
}

.uptickul,.upcrossul{
    display: none;
}

h5.arrowimgholderhead{
    font-size: 16px;
    font-weight: 600;
    color: var(--black1);
    text-align: left;
    margin: 20px 0 5px;
}
.arrowimgholder2ex .incr_arr{
    margin: 12px 0;
}
.arrowholder .arrowholderContent .arrowimgholder.arrowimgholder-st{
    justify-content: flex-start;
}

.arrowimgholderForm .form-group .form-checkbox-inp input[type="checkbox"]{
    display: none;
}
.arrowimgholderForm .form-group .form-checkbox-inp input[type="checkbox"] + label{
    position: relative;
    padding: 0 0 0 25px;
    font-size: 11px;
    display: block;
    width: 100%;
    line-height: 16px;
}
.arrowimgholderForm .form-group .form-checkbox-inp input[type="checkbox"] + label:before{
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
.arrowimgholderForm .form-group .form-checkbox-inp input[type="checkbox"] + label:after{
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #2b9f20;
    width: 0;
    height: 0;
    padding: 5px 0px 5px 5px;
    transform: rotate(45deg);
    opacity: 0; 
}
.arrowimgholderForm .form-group .form-checkbox-inp .shake + 
label:before{
    border: 1px solid var(--red);
    background: #ffcccc;
}
.arrowimgholderForm .form-group .form-checkbox-inp .shake:checked + 
label:before{ 
    background: #fff;
}
.arrowimgholderForm .form-group .form-checkbox-inp input[type="checkbox"]:checked + 
label:after{
    opacity: 1;
}

.infoearmodal{
    position: absolute;
    background: rgba(204,204,204,.9);
    left: 0;
    top: 10px;
    width: 100%;
    height: calc(100% - 10px);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    display: none;
}
.infoearmodal.active{
    display: flex;
}
.infocross{
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 35px;
}
.infodivholder{
    background: #fff;
    padding: 30px;
}
.infodivholder img{
    width: 100%;
}


@media (min-width: 1900px){
    .sideon{
        margin-left: 15px;
    }
}

@media (max-width: 1899px){
    .sideon{
        margin-left: 100px;
    }
}
@media (max-width: 1599px){
   .sideon{
        margin-left: 170px;
    }
}
@media (max-width: 1399px){
   .sideon{
        margin-left: 260px;
    }
}

@media (max-width: 1199px){
    .sidemenu{width: 250px;}
    .sideon {
        margin-left: 215px;
    }
}

@media (max-width:992px){
    .arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main {
        width:48%;
    }
    .arrowbtn {
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .arrowholder .arrowholderContent .arrowimgholder.arrowimgholder2 .arrowimgholder-main {
        width:100%;
        min-height: 403px;
    }
    .arrowbtn .frmbtn, .arrowbtn .time{
        padding: 14px 70px;
    }
}

@media (max-width:767px){
    .headerTopHold{
            padding-left: 40px;
    }
    .headerTopHold ul li{
        margin-right: 5px;
        font-size: 12px;
    }
    .hdlist li{
        margin: 0;
    }
    .hdlist{
        margin: 0 20px 0 0;
    }
    .hdlist li a{
        font-size: 12px;
    }
    .sideon{margin-left: 0;}
    .uploadholder ul + p{
        max-width: 90%;
    }
    .range-slider{
        max-width: 100%;
    }
    .tooltipholder{
        font-size: 25px;
        line-height: 30px;
        min-width: inherit;
    }
    .arrowholder .arrowholderContent .arrowimgholder .arrowimgholder-main {
        width:100%;
    }
    .container {
        width: 100%;
    }
    .arrbtmlist ul li {
        align-items: flex-start;
        flex-direction: column;
    }
    .arrbtmlist ul li .arrbtmlistright {
        margin-left: 0px;
    }
}

@media (max-width: 640px){
    .arrowbtn .frmbtn, .arrowbtn .time {
        padding: 14px 10px;
        width: 100%;
    }
    .arrowimgholderForm .form-group{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .arrowimgholderForm .form-group &gt;label{
        padding-top: 0;
        width: 100%;
        text-align: left;
    }
    .arrowimgholderForm .form-group input[type="checkbox"]{
        margin-right: 5px;
    }
    .arrowimgholderForm .form-group input[type="checkbox"] + label{
        width: 90%;
    }
    .arrowimgholderForm .form-group .form-inp{
        width: 100%;
    }
}

.shake{
    -webkit-animation: kf_shake 0.4s 1 linear;
    -moz-animation: kf_shake 0.4s 1 linear;
    -o-animation: kf_shake 0.4s 1 linear;
    background: #ffe5e5;
    border-radius: 12px;
}
.shake span{
    color: red;
}</pre></body></html>